home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960425-19960715 / 000128_news@columbia.edu _Thu May 23 14:05:36 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id OAA04792 for <kermit.misc@watsun>; Thu, 23 May 1996 14:05:36 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.5/8.7.3) id OAA26862 for kermit.misc@watsun; Thu, 23 May 1996 14:05:34 -0400 (EDT)
  4. Path: news.columbia.edu!sol.ctr.columbia.edu!news.uoregon.edu!vixen.cso.uiuc.edu!newsfeed.internetmci.com!in2.uu.net!news.mathworks.com!news.kei.com!news.consultix.com!newsstand.cit.cornell.edu!newstand.syr.edu!usenet
  5. From: vefatica@syr.edu (Vincent Fatica)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Best efficiency ?
  8. Date: Thu, 23 May 1996 15:14:43 GMT
  9. Organization: Syracuse University
  10. Lines: 33
  11. Message-ID: <31a47d81.389121497@128.230.1.4>
  12. References: <4o08gj$d5u@ns2.ryerson.ca>
  13. Reply-To: vefatica@syr.edu
  14. NNTP-Posting-Host: sudial6-232.syr.edu
  15. X-Newsreader: Forte Agent .99e/32.227
  16.  
  17. jverne@acs.ryerson.ca (John Verne - CNED/F94) wrote:
  18.  
  19. >I was just wondering what % some folk's are getting with big binary file 
  20. >transfers in PC-Kermit to C-Kermit.  I seem to get a max of "11%" no 
  21. >matter what I do with the control-prefixing, block length, etc.
  22.  
  23. As Clarence pointed out, the efficiency (%) can be misleading since it's
  24. based on the DTE (computer to modem) speed. CPS (characters per second) is a
  25. better indication. With my pretty good settings, I routinely get 1620-1640
  26. cps on a 14400 connection for compressed data (zips, gzs) and twice that on
  27. a 28800 connection. And I've achieved those speeds with many different
  28. Kermits (C-Kermit on UNIX and OS/2, MS-Kermit, Kermit95); it shouldn't
  29. matter which you use.
  30.  
  31. Windows, large packets, and little prefixing are the keys. These days, I
  32. use:
  33.  
  34.     set window 31
  35.     set send packet 2000
  36.     set receive packet 2000
  37.     set control unprefix all
  38.     set control prefix 0 1 3 128 129 131
  39.  
  40. These days I make TCP/IP connections as well as dialed ones. I seem to
  41. recall using only "set control prefix 0 1 3" back when I made only dialed
  42. connections.
  43.  
  44.  - Vince
  45. ___
  46.    Vincent Fatica
  47.    Syracuse University Mathematics
  48.    vefatica@syr.edu
  49.    http://barnyard.syr.edu/~vefatica/